/* 公用 */
/* a标签 */
body {
  margin: 0 auto;
  overflow-x: hidden;
  max-width: 1920px;
  min-width: 1280px;
}

.banner .phoneimg {
  display: none;
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  *zoom: 1;
}

.ff_12 {
  font-size: 12px;
  font-weight: bold;
}

.ff_16 {
  font-size: 16px;
  font-weight: bold;
}

.ff_18 {
  font-size: 18px;
  font-weight: bold;
}

.ff_20 {
  font-size: 20px;
  font-weight: bold;
}

.ff_22 {
  font-size: 22px;
  font-weight: bold;
}

.ff_24 {
  font-size: 24px;
  font-weight: bold;
}

.ff_26 {
  font-size: 26px;
  font-weight: bold;
}

.ff_28 {
  font-size: 28px;
  font-weight: bold;
}

.ff_30 {
  font-size: 30px;
  font-weight: bold;
}

.ff_32 {
  font-size: 32px;
  font-weight: bold;
}

.ff_34 {
  font-size: 34px;
  font-weight: bold;
}

.ff_36 {
  font-size: 36px;
  font-weight: bold;
}

.ff_38 {
  font-size: 38px;
  font-weight: bold;
}

.ff_40 {
  font-size: 40px;
  font-weight: bold;
}

a {
  color: #666;
  text-decoration: none;
  outline: none;
}

/* 面包屑导航 */
.bread {
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #dddddd;
}

.bread .box {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bread .box .left .ul1 {
  height: 100%;
  display: flex;
  align-items: center;
}

.bread .box .left .ul1 li a {
  color: #777;
}

.bread .box .left .ul1 li:last-child a {
  color: #00479d;
}

.bread .box .left .ul1 li a:hover {
  color: #00479d;
}

.bread .box .right .ul2 {
  height: 100%;
  display: flex;
  align-items: center;
}

.bread .box .right .ul2 li a {
  color: #777;
  cursor: pointer;
}

.bread .box .right .ul2 li {
  margin-right: 42px;
}

.bread .box .right .ul2 li:last-child {
  margin-right: 0;
}

.bread .box .right .ul2 li .ph {
  color: #00479d;
}

.bread .box .right .ul2 li a:hover {
  color: #00479d;
}

/* 弹窗 */

.z_tanchuang {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  z-index: 10;
}

.z_tanchuang .tbox {
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}

/* 弹窗内容 */

.z_tanchuang .tbox .modal {
  background: white;
  padding: 50px;
  display: block;
  border-radius: 5px;
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90%;
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .out {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff url(../images/out.png) center no-repeat;
  background-size: 20px;
  color: #000;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  top: 0;
  right: -50px;
  cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .img video {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.z_tanchuang .tbox .modal .img img {
  margin: 0 auto;
}

.z_tanchuang .tbox .modal .out:hover {
  background: #fff url(../images/out2.png) center no-repeat;
  background-size: 20px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.z_tanchuang .tbox .modal2 {
  padding: 20px;
}

.z_tanchuang .tbox .modal .img {
  max-width: 1200px;
}

/* 弹窗选中 */

.z_tanchuang.one {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scaleY(0.01) scaleX(0);
  -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(0);
  -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(1);
  -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@-webkit-keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

/* 首页全图轮播样式 */
.swiper_bd {
  height: 100vh;
  overflow: hidden;
  /* margin-top: -16px; */
}

.swiper_bd>.swiper-wrapper>.swiper-slide {
  height: 100%;
  overflow: hidden;
}

.swiper_bd .swiper-slide {}


.swiper_bd>.swiper-wrapper>.swiper-slide:last-child {
  height: 600px;
}



/* 按钮样式 */
.more {
  width: 150px;
  height: 50px;
  font-size: 14px;
  color: #3193e5;
  display: flex;
  align-items: center;
  padding-left: 27px;
  border-radius: 25px;
  border: 2px solid #3193e5;
  position: relative;
}

.more:hover {
  border: 2px solid #3193e5;
  color: #fff;
  background-color: #3193e5;
}

.more .img {
  width: 12px;
  height: 10px;
}

.more img {
  position: absolute;
  top: 50%;
  right: 29px;
  transform: translateY(-50%);
}

.more img:last-child {
  opacity: 0;
}

.more:hover img:last-child {
  right: 26px;
  opacity: 1;
}

.more:hover img:first-child {
  opacity: 0;
}

/* 按钮1 */
.more1 {
  width: 120px;
  height: 40px;
  font-size: 14px;
  color: #3193e5;
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-radius: 25px;
  border: 2px solid #3193e5;
  position: relative;
}

.more1:hover {
  border: 2px solid #3193e5;
  color: #fff;
  background-color: #3193e5;
}

.more1 .img {
  width: 12px;
  height: 10px;
}

.more1 img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.more1 img:last-child {
  opacity: 0;
}

.more1:hover img:last-child {
  right: 17px;
  opacity: 1;
}

.more1:hover img:first-child {
  opacity: 0;
}

.more11 {
  width: 120px;
  height: 40px;
  font-size: 14px;
  color: #00479d;
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-radius: 25px;
  border: 2px solid #fff;
  position: relative;
  background-color: #fff;
}

/* .more11:hover {
  border: 2px solid #00479d;
  color: #fff;
  background-color: #00479d;
}

.more11 .img {
  width: 12px;
  height: 10px;
} */

.more11 img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/* .more11 img:last-child {
  opacity: 0;
} */

.more11:hover img {
  right: 17px;
  /* opacity: 1; */
}

/* 
.more11:hover img:first-child {
  opacity: 0;
} */

.more2 {
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 36px;
  border-radius: 25px;
  background: #00479d;
  position: absolute;
  bottom: 22px;
  left: 35px;
}

.more2 .m_text {
  opacity: 0;
}

.more2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.more3 {
  width: 100px;
  height: 40px;
  font-size: 14px;
  color: #00479d;
  text-align: center;
  line-height: 40px;
  border-radius: 25px;
  background: #fff;
  position: relative;
}

/* 按钮4 */
.more4 {
  width: 120px;
  height: 40px;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-radius: 25px;
  background-color: #00479d;
  position: relative;
}

.more4 img {
  margin-left: 8px;
}

/* 按钮5 */
.more5 {
  width: 120px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
  color: #00479d;
  text-align: center;
  line-height: 40px;
  border-radius: 25px;
  border: 2px solid #00479d;
  background-color: #efefef;
}

.more5:hover {
  background-color: #00479d;
  color: #fff;
}

.tt_text {
  position: relative;
}

.tt_text .eng {
  font-size: 70px;
  color: #033590;
  opacity: 0.1;
  padding-left: 49px;
}

.tt_text .chi {
  font-size: 40px;
  color: #333;
  font-weight: bold;
  position: absolute;
  top: 36px;
  left: 0;
}


/* banner1 */
.banner1 {
  width: 100%;
  height: auto;
  position: relative;
}

.banner1 .img img {
  width: 100%;
  height: 100%;
}

.banner1 .img img:last-child {
  display: none;
}

.banner1 .text {
  width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -48px;
  margin-left: -400px;
  text-align: center;
}

.banner1 .text .d_text {
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}

.banner1 .text .c_text {
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}

/* 分页 */

.fy {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.fy .img {
  width: 19px;
  height: 17px;
  position: relative;
}

.fy .img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -20px;
}

.fy .img img:last-child {
  opacity: 0;
}

.fy .img:hover img:last-child {
  opacity: 1;
}

.fy .img img:last-child {
  opacity: 0;
}

.fy .img1 {
  width: 19px;
  height: 17px;
  position: relative;
}

.fy .img1 img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -20px;
}

.fy .img1 img:last-child {
  opacity: 0;
}

.fy .img1:hover img:last-child {
  opacity: 1;
}

.fy .img1 img:last-child {
  opacity: 0;
}

.fy .ul1 {
  height: 25px;
  display: flex;
  align-items: center;
}

.fy .ul1 li {
  width: 40px;
  height: 100%;
  line-height: 25px;
  text-align: center;
}

.fy .ul1 li a {
  color: #777;
}

.fy .ul1 li:hover a {
  color: #00479d;
}

.fy .ul1 li.act a {
  color: #00479d;
}




/* 公共按钮样式结束 */








@media(max-width:1280px) {}

@media(max-width:1030px) {
  body {
    min-width: 100px;
  }

  .ibox {
    max-width: 1030px;
    min-width: 100px;
    width: 85%;
    margin: 0 auto;
  }

  .wow {
    opacity: 1;
  }

  .swiper_bd>.swiper-wrapper>.swiper-slide:last-child {
    height: 66px;
  }

  .fy {
    margin-top: 30px;
  }
}

@media (max-width:960px) {

  .wow {
    opacity: 1;
  }

  .swiper_bd>.swiper-wrapper>.swiper-slide:last-child {
    height: auto;
  }

  .tt_text .eng {
    font-size: 28px;
    color: #033590;
    opacity: 0.1;
    padding-left: 20px;
  }

  .tt_text .chi {
    font-size: 26px;
    color: #333;
    font-weight: bold;
    position: absolute;
    top: 17px;
    left: 0;
  }

  .more {
    width: 130px;
    height: 40px;
    font-size: 14px;
    color: #00479d;
    display: flex;
    align-items: center;
    padding-left: 22px;
    border-radius: 25px;
    border: 2px solid #00479d;
    position: relative;
  }

  .more img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .more img:last-child {
    opacity: 0;
  }

  .more:hover img:last-child {
    right: 17px;
    opacity: 1;
  }

  .more1 {
    width: 155px;
    height: 35px;
    font-size: 14px;
    color: #00479d;
    display: flex;
    align-items: center;
    padding-left: 13px;
    border-radius: 25px;
    border: 2px solid #00479d;
    position: relative;
  }



  .more1 img {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
  }

  .more2 {
    left: 20px;
  }

  .banner1 .img img:first-child {
    display: none;
  }

  .banner1 .img img:last-child {
    display: block;
  }

  .banner1 .text {
    width: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -48px;
    margin-left: -175px;
    text-align: center;
  }

  .fy {
    margin-top: 15px;
  }

  .bread {
    margin-top: 50px;
    height: auto;
  }

  .bread .box {
    display: block;
  }

  .bread .box .right {
    margin: 20px 0;
  }

  .bread .box .right .ul2 li {
    margin-right: 10px;
  }
}